home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / CHIP Kasım 1996.iso / ms / visualj / vjtrialb.exe / RCDATA / CABINET / MFCAPWZ.DLL / TEMPLATE / ROOT.H < prev    next >
C/C++ Source or Header  |  1996-07-31  |  1KB  |  54 lines

  1. // $$root$$.h : main header file for the $$ROOT$$ application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // $$APP_CLASS$$:
  12. // See $$root$$.cpp for the implementation of this class
  13. //
  14.  
  15. class $$APP_CLASS$$ : public $$APP_BASE_CLASS$$
  16. {
  17. public:
  18.     $$APP_CLASS$$();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL($$APP_CLASS$$)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. $$IF(FULL_SERVER || MINI_SERVER || CONTAINER_SERVER || AUTOMATION)
  29.     COleTemplateServer m_server;
  30. $$IF(VERBOSE)
  31.         // Server object for document creation
  32. $$ENDIF
  33. $$ENDIF
  34.  
  35.     //{{AFX_MSG($$APP_CLASS$$)
  36.     afx_msg void OnAppAbout();
  37. $$IF(VERBOSE)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40. $$ENDIF
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. $$IF(VBX)
  46. /////////////////////////////////////////////////////////////////////////////
  47. // VB-Event extern declarations
  48.  
  49. //{{AFX_VBX_REGISTER()
  50. //}}AFX_VBX_REGISTER
  51. $$ENDIF //VBX
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.